PDP ×

Keywords

+

Categories

+
  • +
  • +
  • +
  • +
  • +
  • +

Brands

+












:root {
/* Premium palette  value and accessibility */
pdp-navy: #1a2840;
deep-slate: #2c3e50;
charcoal: #34495e;
silver: #bdc3c7;
platinum: #ecf0f1;
accent-orange: #e67e22;
accent-red: #e74c3c;
pure-white: #ffffff;
text-primary: #2c3e50;
text-light: #7f8c8d;

/* Typography */
font-display: Oswald, sans-serif;
font-body: Lato, sans-serif;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: var(font-body);
color: var(text-primary);
background: var(pure-white);
line-height: 1.7;
overflow-x: hidden;
}

/* Premium header */
.brand-header {
background: linear-gradient(135deg, var(pdp-navy) 0%, var(deep-slate) 100%);
padding: 100px 20px 120px;
position: relative;
overflow: hidden;
}

.brand-header::before {
content: ;
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(230,126,34,0.08) 0%, transparent 70%);
border-radius: 50%;
}

.brand-header::after {
content: ;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(accent-orange), transparent);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 1;
}

.content-wrapper {
max-width: 1160px;
margin: 0 auto;
}

.brand-logo {
font-family: var(font-display);
font-size: clamp(3.5rem, 8vw, 6rem);
font-weight: 700;
color: var(pure-white);
letter-spacing: 8px;
text-transform: uppercase;
margin-bottom: 20px;
animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.brand-tagline {
font-family: var(font-body);
font-size: clamp(1.1rem, 2vw, 1.4rem);
color: var(silver);
font-weight: 300;
letter-spacing: 2px;
text-transform: uppercase;
animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Expert overview */
.expert-overview {
background: var(pure-white);
border-left: 4px solid var(accent-orange);
padding: 40px 45px;
margin: -60px 0 80px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
position: relative;
}

.expert-overview::before {
content: ;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, var(accent-orange), transparent);
}

.expert-overview p {
font-size: 1.15rem;
line-height: 1.9;
color: var(text-primary);
font-weight: 300;
}

.expert-overview strong {
color: var(pdp-navy);
font-weight: 700;
}

/* Credentials strip */
.credentials-strip {
background: linear-gradient(to right, var(charcoal), var(deep-slate));
padding: 30px 40px;
margin-bottom: 80px;
}

.credentials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}

.credential {
text-align: center;
color: var(pure-white);
}

.credential-icon {
font-size: 2.5rem;
font-weight: 700;
font-family: var(font-display);
color: var(accent-orange);
margin-bottom: 10px;
}

.credential-title {
font-size: 1.1rem;
font-weight: 700;
font-family: var(font-display);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.credential-detail {
font-size: 0.95rem;
color: var(silver);
font-weight: 300;
}

/* Section styling */
section {
margin-bottom: 100px;
}

h2 {
font-family: var(font-display);
font-size: clamp(2.2rem, 4vw, 3rem);
font-weight: 700;
color: var(pdp-navy);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 30px;
position: relative;
padding-bottom: 20px;
}

h2::after {
content: ;
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 3px;
background: var(accent-orange);
}

h3 {
font-family: var(font-display);
font-size: clamp(1.6rem, 3vw, 2rem);
font-weight: 600;
color: var(deep-slate);
text-transform: uppercase;
letter-spacing: 1px;
margin: 40px 0 20px;
}

p {
font-size: 1.05rem;
line-height: 1.8;
color: var(text-primary);
margin-bottom: 20px;
font-weight: 300;
}

/* Product series showcase */
.series-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin: 50px 0;
}

.series-card {
background: linear-gradient(to bottom, var(pure-white), #f8f9fa);
border: 1px solid #e9ecef;
padding: 40px 35px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.series-card::before {
content: ;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: var(accent-orange);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.series-card:hover::before {
transform: scaleX(1);
}

.series-card:hover {
box-shadow: 0 15px 50px rgba(0,0,0,0.12);
transform: translateY(-5px);
}

.series-name {
font-family: var(font-display);
font-size: 1.8rem;
font-weight: 700;
color: var(pdp-navy);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.series-tagline {
font-size: 0.95rem;
color: var(accent-orange);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 20px;
}

.series-description {
font-size: 1rem;
line-height: 1.7;
color: var(text-light);
margin-bottom: 25px;
}

.series-features {
list-style: none;
padding: 0;
}

.series-features li {
padding: 10px 0;
font-size: 0.95rem;
color: var(text-primary);
border-bottom: 1px solid #e9ecef;
position: relative;
padding-left: 25px;
}

.series-features li:last-child {
border-bottom: none;
}

.series-features li::before {
content: ¸;
position: absolute;
left: 0;
color: var(accent-orange);
font-weight: 700;
}

/* Why PDP section */
.why-pdp {
background: linear-gradient(135deg, var(pdp-navy) 0%, var(charcoal) 100%);
padding: 80px 50px;
margin: 80px 0;
position: relative;
overflow: hidden;
}

.why-pdp::before {
content: ;
position: absolute;
top: -30%;
left: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(230,126,34,0.1) 0%, transparent 70%);
border-radius: 50%;
}

.why-pdp-content {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
}

.why-pdp h2 {
color: var(pure-white);
}

.why-pdp h2::after {
background: var(accent-orange);
}

.why-pdp-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
margin-top: 50px;
}

.why-item {
background: rgba(255,255,255,0.05);
padding: 35px 30px;
border-left: 3px solid var(accent-orange);
transition: all 0.3s;
}

.why-item:hover {
background: rgba(255,255,255,0.08);
}

.why-number {
font-family: var(font-display);
font-size: 3rem;
font-weight: 700;
color: var(accent-orange);
opacity: 0.3;
line-height: 1;
margin-bottom: 15px;
}

.why-item h4 {
font-family: var(font-display);
font-size: 1.3rem;
font-weight: 700;
color: var(pure-white);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}

.why-item p {
color: var(silver);
font-size: 1rem;
line-height: 1.7;
}

/* Services section */
.services-section {
background: #f8f9fa;
padding: 80px 50px;
margin: 80px 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 40px;
}

.service-card {
background: var(pure-white);
padding: 40px 35px;
border-left: 4px solid var(accent-orange);
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
font-size: 1.5rem;
margin-top: 0;
margin-bottom: 15px;
}

.service-card p {
color: var(text-light);
margin-bottom: 20px;
}

.service-card ul {
list-style: none;
padding: 0;
}

.service-card li {
padding: 8px 0;
font-size: 0.95rem;
color: var(text-primary);
position: relative;
padding-left: 20px;
}

.service-card li::before {
content: ;
position: absolute;
left: 0;
color: var(accent-orange);
font-weight: 700;
}

/* CTA buttons */
.cta-section {
display: flex;
gap: 20px;
flex-wrap: wrap;
margin: 40px 0;
}

.btn {
display: inline-block;
padding: 18px 45px;
font-family: var(font-display);
font-size: 1rem;
font-weight: 600;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s;
}

.btn-primary {
background: var(pdp-navy);
color: var(pure-white);
border: 2px solid var(pdp-navy);
}

.btn-primary:hover {
background: var(deep-slate);
border-color: var(deep-slate);
box-shadow: 0 8px 25px rgba(26,40,64,0.3);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(pdp-navy);
border: 2px solid var(pdp-navy);
}

.btn-secondary:hover {
background: var(pdp-navy);
color: var(pure-white);
}

/* Final CTA */
.final-cta {
background: linear-gradient(to right, var(accent-orange), #d35400);
padding: 70px 50px;
text-align: center;
margin: 100px 0 0;
}

.final-cta h2 {
color: var(pure-white);
margin-bottom: 20px;
}

.final-cta h2::after {
display: none;
}

.final-cta p {
font-size: 1.2rem;
color: var(pure-white);
margin-bottom: 35px;
font-weight: 400;
}

.final-cta .btn-primary {
background: var(pdp-navy);
border-color: var(pdp-navy);
}

.final-cta .btn-secondary {
background: transparent;
color: var(pure-white);
border-color: var(pure-white);
}

.final-cta .btn-secondary:hover {
background: var(pure-white);
color: var(accent-orange);
}

/* Highlight boxes */
.highlight-box {
background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
padding: 30px 35px;
margin: 40px 0;
border-radius: 8px;
border-left: 5px solid var(accent-orange);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.highlight-box h3 {
margin: 0 0 15px 0;
color: var(accent-orange);
font-size: 1.3rem;
}

.highlight-box p {
margin: 0;
line-height: 1.7;
font-size: 1.05rem;
color: var(text-primary);
}

/* Mobile responsive */
@media (max-width: 968px) {
.container {
padding: 0 15px;
}

.content-wrapper {
max-width: 100%;
}

.brand-header {
padding: 60px 20px 80px;
}

.brand-logo {
font-size: 3rem;
}

.expert-overview {
padding: 30px 25px;
margin: -40px 15px 60px;
}

.credentials-strip {
padding: 25px 20px;
}

.credentials-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.series-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.why-pdp {
padding: 50px 25px;
}

.why-pdp-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.services-section {
padding: 50px 25px;
}

.services-grid {
grid-template-columns: 1fr;
}

.cta-section {
flex-direction: column;
}

.btn {
width: 100%;
text-align: center;
}

.final-cta {
padding: 50px 25px;
}

.highlight-box {
padding: 25px 20px;
}
}



PDP DRUMS

DW Quality at Budget-Friendly Pricing







PDP (Pacific Drums and Percussion) represents DW Drums budget-friendly subsidiary delivering exceptional value through simplified construction and efficient Chinese manufacturing while maintaining DW design standards and quality control. Founded in 1999 as a wholly-owned DW subsidiary, PDP provides drummers access to DW engineering expertise and proven hardware designs at accessible pricing impossible from independent budget manufacturers. At Angkor Music Melbourne, we stock PDP Concept Series ($900-1,500 complete kit), Concept Maple Series ($1,000-1,800 complete kit), and DW Design Series ($1,800-2,800 shell pack), all manufactured in China under DW ownership and quality oversight. Concept provides best entry-level drum value worldwide with poplar shells and quality chrome hardware perfect for beginning drummers, students, and budget-conscious musicians requiring reliable affordable drums surviving years of use. Concept Maple offers genuine maple shells at entry-level pricing through DW subsidiary efficiency  warm resonant tone typically found on $2,000-plus kits available at budget-friendly cost making it exceptional value for intermediate players wanting maple character. DW Design represents PDP flagship providing genuine DW features including STM tom mounting, True-Pitch tuning, and MAG throw-off at substantially lower pricing than American-made DW Performance series. Our professional drummer on staff teaches hundreds of students on PDP Concept kits and provides honest recommendations based on real-world teaching experience rather than profit margins. We maintain PDP Concept complete kits setup on our showroom floor for hands-on trial, tune and set up all PDP drums we sell ensuring optimal performance, and guide students toward appropriate PDP series matching their skill level and budget while setting realistic expectations for entry-level and intermediate drum performance. Located 4-6 Drake Boulevard, Altona VIC 3018. Call (03) 8360 7799 for PDP drum advice from working drummers who teach on these drums daily.






DW

DW-Owned Subsidiary

DW engineering expertise and quality control standards





Teaching Experience

Hundreds of students taught on PDP Concept kits



$

Exceptional Value

Best entry-level drum value worldwide





Showroom Trial

Concept kits setup for hands-on evaluation






Why PDP Drums  The DW Advantage at Budget Pricing

PDPs greatest strength lies in DW Drums ownership providing quality oversight, engineering expertise, and proven hardware designs impossible for independent budget manufacturers to match. From a teaching perspective, PDP Concept represents the best entry-level drum value worldwide, surviving years of student abuse while maintaining playability.

As a drum teacher who has taught hundreds of students on PDP Concept kits and seen their reliability over years of abuse, I trust PDP for beginning and intermediate applications requiring affordable dependable drums. DW subsidiary status provides quality oversight, proven hardware designs, and manufacturing efficiency creating an exceptional value proposition that independent budget manufacturers simply cannot replicate.

At Angkor Music Melbourne, our professional drummer provides honest PDP recommendations based on real-world teaching experience rather than profit margins. We guide students toward appropriate PDP series matching their skill level and budget while setting realistic expectations for entry-level and intermediate drum performance. This practical knowledge helps families make smart investments in drums that serve their purpose without requiring premium pricing for uncertain long-term commitment.




PDP Drum Kit Series



Concept Series

Best Entry-Level Value Worldwide

Concept represents the best entry-level drum investment for beginning drummers, providing reliable construction, adequate hardware, and playable tone at $900-1,500 complete kit pricing. Perfect first drum kit for students age 8-16 learning fundamentals.


7-ply poplar shells (7mm)  durable construction
Chrome-plated steel hardware adequate for entry use
DW quality oversight ensures playable bearing edges
Survives years of student use with basic maintenance
Complete kit with hardware, throne, cymbals included
Price: $900-1,500 complete kit




Concept Maple

Genuine Maple at Entry Pricing

Concept Maple delivers genuine all-maple shells at $1,000-1,500 complete kit pricing typically requiring $2,000-plus investment from other manufacturers. Warm resonant maple character at budget-friendly cost creates perfect intermediate drum choice.


7-ply all-maple shells  warm resonant character
Upgraded double-braced chrome stands for stability
Die-cast hoops on toms  enhanced tuning stability
Maple snare drum matching shell material
80% of premium maple tone at 30% of price
Price: $1,000-1,800 complete kit




DW Design Series

Professional Features at PDP Pricing

DW Design represents PDP flagship offering genuine DW features including STM suspension, True-Pitch tuning, and MAG throw-off at $1,800-2,800 shell pack pricing. Accessible path to DW quality without $4,000-plus Performance series investment.


All-maple shells with reinforcement hoops
STM (Suspension Tom Mounts)  genuine DW system
True-Pitch tuning rods for enhanced stability
MAG (Magnetic) throw-off  DW design
85% of DW Performance functionality at 45% of cost
Price: $1,800-2,800 shell pack (no hardware)











What Makes PDP Different



01

DW Ownership Ensures Quality

PDP operates as wholly-owned DW Drums subsidiary founded 1999. This ownership structure creates unique advantages  PDP benefits from DW engineering expertise in bearing edge design, hardware development, and quality control procedures while maintaining lower pricing through Chinese manufacturing and simplified construction.



02

DW Hardware Designs

PDP drums incorporate simplified versions of DW hardware designs providing proven reliability at accessible pricing. DW Design series features genuine DW components including STM suspension and MAG throw-off creating professional functionality at fraction of DW Performance cost. Even entry-level Concept benefits from DW engineering knowledge.



03

Exceptional Value Proposition

Chinese manufacturing under DW oversight enables PDP to deliver playable drums at $900-1,500 complete kit pricing impossible through American or Taiwanese manufacturing labor costs. This creates accessible entry point for beginning drummers while DW quality control maintains acceptable standards preventing the frustrating unreliability of truly cheap drums.



04

Perfect Upgrade Path

PDP series create logical progression: beginners start with Concept building skills and determining commitment, intermediate players upgrade to Concept Maple gaining maple warmth, serious players invest in DW Design acquiring professional features, and professionals eventually transition to DW Performance or Collector when budget allows and applications demand ultimate quality.



05

Teaching-Proven Reliability

From teaching hundreds of students on PDP Concept kits, I can confirm these drums survive years of student abuse while maintaining playability. Bearing edges arrive cut consistently allowing proper tuning. Hardware functions reliably without immediate failure. Shells remain round maintaining tuning stability. These fundamental quality aspects separate PDP from truly cheap drums.



06

Honest Expectations

PDP drums sound like budget drums should  functional and adequate for their price point. Concept serves beginning drummers perfectly for 12-24 months. Concept Maple provides genuine maple warmth for intermediate players. DW Design delivers professional features for working drummers on budget. Understanding realistic capabilities helps avoid disappointment and ensures smart purchasing decisions.









Choosing the Right PDP Series

Understanding which PDP series matches your skill level, musical requirements, and budget ensures smart investment in drums serving their purpose without unnecessary overspending or disappointing underperformance.


Who Should Buy PDP Concept

Perfect for beginning drummers age 8-16 learning fundamentals, students unsure of long-term commitment to drumming, families on budget requiring affordable first drum kit, young players needing durable drums surviving enthusiastic playing, and practice rooms requiring low-cost reliable drums. Concept delivers exceptional value at $900-1,500 providing playable kit surviving 12-24 months of skill development without excessive investment before determining serious commitment. Students outgrow Concept as skills advance  typical progression represents successful entry investment rather than product failure.



Who Should Buy Concept Maple

Ideal for intermediate players outgrowing entry drums and wanting maple character without premium pricing, students upgrading from Concept series seeking genuine tone improvement, working drummers on budget requiring maple warmth adequate for club gigs and church work, and players prioritizing shell material over ultimate refinement. Concept Maple provides 80 percent of premium maple tone at 30 percent of price through efficient manufacturing. Serves intermediate drummers perfectly for 2-4 years before requiring professional-grade upgrade.



Who Should Buy DW Design

Suited to working drummers requiring professional features without DW Collector or Performance pricing, serious hobbyists investing in long-term drums approaching professional quality, intermediate players ready for significant upgrade from Concept or Export level, and drummers wanting genuine DW hardware and design at accessible cost. DW Design creates bridge between intermediate drums and true professional kits providing DW features at PDP pricing. Represents serious investment for players committed to drumming long-term requiring professional features lasting 10-plus years.





Smart Upgrade Path Strategy

Following logical progression through PDP series or transitioning to premium brands as skills and budget develop helps plan long-term drum investments avoiding unnecessary purchases.

Stage 1: Beginning (0-2 years)

Start with PDP Concept complete kit ($900-1,500). Focus on learning fundamentals, developing timing, and building coordination. Timeline: 12-24 months before outgrowing. Students typically progress to Concept Maple or Pearl Export as skills advance and commitment solidifies. Concept serves entry purpose perfectly without requiring premium pricing for uncertain long-term musical involvement.

Stage 2: Intermediate (2-5 years)

Upgrade to PDP Concept Maple ($1,000-1,800) or Pearl Export ($1,500-2,400). Focus on developing style, playing with bands, and learning advanced techniques. Timeline: 2-4 years before requiring professional upgrade. Intermediate drums provide substantial tone improvement over entry kits while remaining affordable. Maple warmth and enhanced hardware support musical growth through high school and early gigging experiences.

Stage 3: Advanced/Semi-Pro (5+ years)

Upgrade to DW Design ($1,800-2,800), Pearl Masters ($3,500-6,000), or equivalent professional drums. Focus on gigging regularly, recording, and pursuing serious musical career. Timeline: Many years of service before requiring ultimate professional upgrade. DW Design provides genuine DW features adequate for most working drummer applications. Eventually professionals may upgrade to American-made DW Performance or Collector though DW Design serves many players indefinitely.

Each upgrade should represent significant improvement in tone, hardware, and playability justifying investment. Avoid incremental upgrades providing minimal benefit  wait until ready for substantial step up in quality.








Professional PDP Drum Services

Proper tuning and setup transforms budget drums from mediocre to optimal playability. Our Melbourne drum department provides comprehensive services supporting PDP drummers from beginner through intermediate levels.



Expert Drum Tuning

Professional tuning service optimizing PDP drums achieving best possible tone:


Bearing edge inspection ensuring proper head contact
Lug tension balancing eliminating buzzing and overtones
Resonant head tuning for optimal sustain
Musical interval tuning creating melodic relationships
Hardware adjustment for ergonomic comfort
Service pricing: $80-180 depending on kit size




Teaching Experience

Honest advice from drum teacher with hundreds of PDP students:


Concept vs Concept Maple upgrade justification
PDP vs Pearl Export comparison for your budget
Realistic expectations for entry-level drum quality
Upgrade timeline guidance  when to transition
Hardware upgrade options improving playability
Teaching-proven reliability insights from daily use




Professional Setup

Complete kit assembly and optimization included with purchases:


Complete kit assembly and hardware positioning
Ergonomic adjustment for comfortable playing
Professional tuning across entire dynamic range
Head selection consultation and installation
Teaching proper tuning technique during service
Realistic capability assessment and guidance










Why Buy PDP Drums From Angkor Music Melbourne

We maintain PDP Concept complete kits setup on our showroom floor enabling hands-on trial before purchasing. Play drums yourself experiencing build quality, hardware function, and tone firsthand rather than relying on online specifications.

Our professional drummer teaches hundreds of students on PDP Concept kits, providing honest recommendations based on real-world teaching experience rather than profit margins. This practical knowledge helps families make smart investments in drums serving their purpose without requiring premium pricing for uncertain long-term commitment to drumming.

Every PDP drum kit receives comprehensive professional setup before delivery or pickup. This includes precision tuning, hardware adjustment, and thorough inspection ensuring optimal performance from the moment you begin playing. Our setup service eliminates the frustration and guesswork beginning drummers often experience attempting to achieve quality tone from improperly configured budget kits.

We guide students toward appropriate PDP series matching their skill level and budget while setting realistic expectations for entry-level and intermediate drum performance. This honest approach prevents disappointment from unrealistic expectations while helping families invest wisely in drums supporting musical development appropriately.

Call (03) 8360 7799 Visit Our Showroom







Experience PDP Drums Value

Visit our Melbourne showroom to try PDP Concept kits and receive honest advice from teachers who use these drums daily.

Call (03) 8360 7799 Browse Drums Online

Angkor Music Melbourne | 4-6 Drake Boulevard, Altona VIC 3018 | Professional Drum Services Since 2010




{
@context: https://schema.org,
@type: MusicStore,
name: Angkor Music Melbourne  PDP Drums Specialist,
description: PDP Drums dealer in Melbourne. DW-owned budget drums. Concept, Concept Maple, DW Design series. Professional drummer advice from teachers who use these drums daily.,
url: https://www.angkormusic.com.au/pdp-drums/,
telephone: +61-3-8360-7799,
address: {
@type: PostalAddress,
streetAddress: 4-6 Drake Boulevard,
addressLocality: Altona,
addressRegion: VIC,
postalCode: 3018,
addressCountry: AU
},
geo: {
@type: GeoCoordinates,
latitude: -37.8687,
longitude: 144.8317
},
openingHoursSpecification: [
{
@type: OpeningHoursSpecification,
dayOfWeek: [Monday, Tuesday, Wednesday, Thursday, Friday],
opens: 09:00,
closes: 17:30
},
{
@type: OpeningHoursSpecification,
dayOfWeek: Saturday,
opens: 09:00,
closes: 17:00
}
],
priceRange: $-$$,
paymentAccepted: Cash, Credit Card, Debit Card
}

{
@context: https://schema.org,
@type: Product,
name: PDP Drums  Complete Range,
description: PDP Concept, Concept Maple, and DW Design series drum kits. DW-owned subsidiary providing exceptional value through efficient manufacturing and quality oversight.,
brand: {
@type: Brand,
name: PDP Drums
},
offers: {
@type: AggregateOffer,
availability: https://schema.org/InStock,
priceCurrency: AUD,
lowPrice: 900,
highPrice: 2800,
seller: {
@type: MusicStore,
name: Angkor Music Melbourne
}
},
aggregateRating: {
@type: AggregateRating,
ratingValue: 4.6,
reviewCount: 89
}
}

{
@context: https://schema.org,
@type: BreadcrumbList,
itemListElement: [
{
@type: ListItem,
position: 1,
name: Home,
item: https://www.angkormusic.com.au/
},
{
@type: ListItem,
position: 2,
name: Drums,
item: https://www.angkormusic.com.au/drums/
},
{
@type: ListItem,
position: 3,
name: PDP Drums,
item: https://www.angkormusic.com.au/pdp-drums/
}
]
}






Read More